home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d17
/
sider.arc
/
SIDERHLP.INC
< prev
next >
Wrap
Text File
|
1988-01-12
|
853b
|
28 lines
procedure siderhlp;
begin
window(3,9,54,23);
clrscr;
writeln('SIDER will print an ASCII or PRN file sideways on');
writeln('an EPSON FX/LX printer. The following options ');
writeln('are available:');
txt(9);write('VIEW - ');txt(3);
writeln('toggles writing to screen during printing');
writeln('on or off.');
writeln;
txt(9);write('SIZE - ');txt(3);
writeln('provides menu selection of three available');
writeln('print sizes: NORMAL(9 cpi/6 lpi), SHORT');
writeln('(12 cpi/6 lpi), and SMALL(12 cpi/10 cpi)');
writeln;
txt(9);write('PRINT - ');txt(3);
writeln('enter path/drive and file to print');
writeln;
txt(9);write('HELP -');txt(3);
writeln('this HELP screen');
writeln(' Press RETURN to continue...');
read(kbd,ch);
clrscr;
window(1,1,80,25);
end;